home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / radd1_7.zip / RADDSTR.002 < prev    next >
Text File  |  1993-03-26  |  2KB  |  54 lines

  1. (* Structure for RADCFG?.DAT                                     *)
  2. (* Copyright 1991 Mike Wilson for RADD, CBV.                     *)
  3. (* ALL RIGHTS RESERVED                                           *)
  4.  
  5.  
  6. CONST
  7.  LdCode      = 1;
  8.  ExitPath    = 2;
  9.  LogFileName = 3;
  10.  BBSMsgPath  = 4;
  11.  XXXXA       = 5;
  12.  
  13.  Hr          = 1;
  14.  Min         = 2;
  15.  Sec         = 3;
  16.  Hun         = 4;
  17.  
  18.  AllowEdit           = 1;
  19.  UseFoneInf          = 2;
  20.  CheckBothNumbers    = 3;
  21.  ForceUSFormat       = 4;
  22.  
  23. Type
  24.      RaddRecord = Record
  25.  
  26.           BooX     : Array[1..10] of Boolean; { LdCode, ExitPath ect...}
  27.           Byt      : Array[1..10] of Byte;    { Extra info for later versions }
  28.           Int      : Array[1..10] of Integer; { ^ }
  29.           Wrd      : Array[1..5] of word;     { ^ }
  30.           Rel      : Array[1..5] of Real;     { ^ }
  31.           Lng      : Array[1..3] of Longint;  { ^ }
  32.           StrX     : Array[1..10] of String;  { ^ }
  33.  
  34.           QuitAfterLD,            { quit after LD calback? }
  35.           TOLLCALL : Boolean;     { Allows LD callbacks?   }
  36.  
  37.           StartTime,                        { Start time for LD calls }
  38.           EndTime  : Array [1..4] of Word;  { EndTime for LD Calls    }
  39.  
  40.           VALSEC   : Word;        { Validated Security Level }
  41.           BoardNumber,            { Message board numerb to post stuff in }
  42.           COMPORT  : Byte;        { Modem comport }
  43.  
  44.           AFlag,                  { Flag settings....}
  45.           BFlag,
  46.           Cflag,
  47.           Dflag,
  48.           INIT,                   { Modem init string }
  49.           DIAL,                   { Modem Dial String }
  50.           DIALSUF,                { Modem Dial Suffix }
  51.           RAPATH   : String;      { Path to BBS Files }
  52. End;
  53.  
  54.